home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / AIAT / Headers / Analysis / DowncaseFilter.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-16  |  597 b   |  35 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        DowncaseFilter.h
  3.     Contains:    class DowncaseFilter
  4.     Copyright:    © 1996-1998 by Apple Computer, Inc., all rights reserved.
  5. */
  6.  
  7. #pragma once
  8. #ifndef DowncaseFilter_h
  9. #define DowncaseFilter_h
  10.  
  11. #pragma import on
  12. #if PRAGMA_STRUCT_ALIGN
  13.     #pragma options align=power
  14. #endif
  15.  
  16. #include "IAAnalysis.h"
  17.  
  18. #pragma IA_BEGIN_EXPORTS
  19.  
  20. class DowncaseFilter : public IATokenFilter {
  21. public:
  22.                             DowncaseFilter(IATokenStream* s) : IATokenFilter(s) {}
  23.     virtual IAToken*        GetNextToken();
  24. };
  25.  
  26. #pragma IA_END_EXPORTS
  27.  
  28. #if PRAGMA_STRUCT_ALIGN
  29.     #pragma options align=reset
  30. #endif
  31.  
  32. #pragma import reset
  33.  
  34. #endif
  35.